home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / lib / float / cva_sptodp.a < prev    next >
Encoding:
Text File  |  1994-02-01  |  431 b   |  25 lines

  1.  
  2.         ;   CVA_SPTODP.A
  3.         ;
  4.         ;   D0 = arg    (4 bytes)
  5.         ;
  6.         ;   result in D0/D1
  7.         ;
  8.         ;   (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  9.  
  10.         section text,code
  11.  
  12.         xref    _MathIeeeDoubTransBase
  13.  
  14.         xref    _LVOIEEEDPFieee ; MathIeeeDoubTransBase (sing->doub)
  15.         xdef    __cvsptodp_a
  16.  
  17. __cvsptodp_a    move.l    A6,-(sp)
  18.         move.l    _MathIeeeDoubTransBase(A4),A6
  19.         jsr    _LVOIEEEDPFieee(A6) ; convert ieee.sing->ieee.doub
  20.         move.l    (sp)+,A6
  21.         rts
  22.  
  23.         END
  24.  
  25.